home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Maximum CD 1999 February
/
maximum-cd-1999-02.iso
/
Utilities
/
Internet
/
Internet Explorer 4.01
/
JAVI386.CAB
/
xmldso4.cab
/
com
/
ms
/
xml
/
parser
/
ParseException.class
(
.txt
)
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Java Class File
|
1997-10-10
|
498 b
|
24 lines
package com.ms.xml.parser;
public class ParseException extends Exception {
public int line;
public int column;
public Object owner;
public ParseException() {
}
public ParseException(String var1) {
super(var1);
this.line = this.column = 0;
this.owner = null;
}
public ParseException(String var1, int var2, int var3, Object var4) {
super(var1);
this.line = var2;
this.column = var3;
this.owner = var4;
}
}